home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d8 / t3script.arc / OFF.SLT < prev    next >
Text File  |  1990-04-14  |  1KB  |  39 lines

  1. /////////////////////////////////////////////////////////////////////////
  2. //             OFF.SLT  -  by Terry Robertson (October 1988)           //
  3. // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ //
  4. //                                                                     //
  5. //  This script switches off Zmodem Autodownload. There is a second    //
  6. //  script called ON which switches Autodownload on again.             //
  7. //                                                                     //
  8. //  For details of Autodownload see the TELIX manual - TELIX.DOC.      //
  9. //                                                                     //
  10. //  This script is most useful when it is "attached" to a function     //
  11. //  key.                                                               //
  12. //                                                                     //
  13. /////////////////////////////////////////////////////////////////////////
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25. Main()
  26.  
  27. {
  28. int     xpos, ypos;
  29.  
  30. _zmod_auto = 0;
  31.  
  32. xpos = getx();
  33. ypos = gety();
  34. pstraxy(" Auto Zmodem OFF",0,24,112);
  35. gotoxy(xpos, ypos);
  36.  
  37. }
  38.  
  39.